vue使用富文本编辑器 Wangeditor 可显示编辑新增回显禁用

您所在的位置:网站首页 vue 表达式编辑器 vue使用富文本编辑器 Wangeditor 可显示编辑新增回显禁用

vue使用富文本编辑器 Wangeditor 可显示编辑新增回显禁用

2023-07-13 00:41| 来源: 网络整理| 查看: 265

 

           

import E from 'wangeditor' import {   uploadPictures } from '@/api/user' export default {   model: {     prop: 'value',     event: 'change',   },   props: {     value: {       type: String,       required: true,     },

    //是否禁用     flag: {       type: Boolean,       required: true,     },   },   data () {     return {       editor: null,       info_: null,       tableHeight: '600px',       uploadurl: process.env.VUE_APP_BASE_API + '/cs/localStorage/pictures',     }   },

  watch: {     value (newval) {       if (newval !== this.editor.txt.html()) {         this.editor.txt.html(newval)       }     },     flag: {       immediate: true,       handler: function (newval) {         this.$nextTick(() => {           this.editor.$textElem.attr('contenteditable', newval)         })       },       deep: true,     },   },   mounted () {     //初始化富文本编辑器     this.seteditor();     // 这一步非常重要,用于富文本修改信息的时候,数据回显     // this.value是父子传参,动态传值的     this.editor.txt.html(this.value);   },   methods: {     seteditor () {       let that = this       that.editor = new E(that.$refs.toolbar, that.$refs.editor)       that.editor.customConfig.uploadImgShowBase64 = false       that.editor.customConfig.pasteFilterStyle = true

      // 配置菜单       that.editor.customConfig.menus = [         'head', // 标题         'bold', // 粗体         'fontSize', // 字号         'fontName', // 字体         'italic', // 斜体         'underline', // 下划线         'strikeThrough', // 删除线         'foreColor', // 文字颜色         'backColor', // 背景颜色         'link', // 插入链接         'list', // 列表         'justify', // 对齐方式         'quote', // 引用         // 'emoticon', // 表情         'image', // 插入图片         'table', // 表格         // 'video', // 插入视频         // 'code', // 插入代码         'undo', // 撤销         'redo', // 重复         // 'fullscreen', // 全屏       ]       that.editor.customConfig.onchange = (html) => {         that.info_ = html // 绑定当前逐渐地值         that.$emit('change', that.info_) // 将内容同步到父组件中       }       // 字号       // console.log(this.editor)       that.editor.customConfig.uploadImgServer = that.uploadurl       that.editor.customConfig.uploadFileName = 'file'

      //自定义图片上传       that.editor.customConfig.customUploadImg = function (files, insert) {         // file是是input中选中的文件列表          //  insert是获取图片url后,插入到编辑器中的方法         var formData = new FormData();         var obj = {};         for (var i = 0; i < files.length; i++) {           obj = files[i]         }         //后端所需的参数         formData.append('file', obj);         uploadPictures(formData).then(result => {           let url = 'http://192.168.2.40:8080/cs/file/' + result.type + '/' + result.realName           insert(url);         })       };       // 创建富文本编辑器       that.editor.create()     }   } }

.editor {   width: 100%;   margin: 0 auto;   position: relative;   z-index: 0; }

::v-deep table {   border-collapse: collapse; }

.toolbar {   border: 1px solid #ccc; }

.text {   border: 1px solid #ccc; }

::v-deep .w-e-text-container {   height: 500px !important; }

::v-deep #wangeditor {   .w-e-text-container {     z-index: 1 !important;     // table {     // margin-left: 0 !important;     // }   }

  .w-e-toolbar {     flex-wrap: wrap;   }

  .w-e-menu {     z-index: auto !important;

    .w-e-droplist {       z-index: 2 !important;     }   } }  



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3